/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/
input[type="file"]{cursor:pointer;}
.uploadifive-button {
	background-color: #ececec;
	background-image: linear-gradient(bottom, #f4f4f4 0%, #ececec 100%);
	background-image: -o-linear-gradient(bottom, #f4f4f4 0%, #ececec 100%);
	background-image: -moz-linear-gradient(bottom, #f4f4f4 0%, #ececec 100%);
	background-image: -webkit-linear-gradient(bottom, #f4f4f4 0%, #ececec 100%);
	background-image: -ms-linear-gradient(bottom, #f4f4f4 0%, #ececec 100%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, #f4f4f4),
		color-stop(1, #ececec)
	);
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-border-radius: 0.2em;
	-moz-border-radius: 0.2em;
	border-radius: 0.2em;
	border: 1px solid #d4d4d4;
	color: #333;
	font: bold 12px Arial, Helvetica, sans-serif;
	text-align: center;
    text-shadow: 1px 1px 0 #fff; 
	text-transform: uppercase;
	width: 100%;
	cursor:pointer;
	font-weight:normal;
}
.uploadifive-button:hover {
	background-color: #eaeaea;
	background-image: linear-gradient(bottom, #f4f4f4 0%, #e1e1e1 100%);
	background-image: -o-linear-gradient(bottom, #f4f4f4 0%, #e1e1e1 100%);
	background-image: -moz-linear-gradient(bottom, #f4f4f4 0%, #e1e1e1 100%);
	background-image: -webkit-linear-gradient(bottom, #f4f4f4 0%, #e1e1e1 100%);
	background-image: -ms-linear-gradient(bottom, #f4f4f4 0%, #e1e1e1 100%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, #f4f4f4),
		color-stop(1, #e1e1e1)
	);
	background-position: center bottom;
	cursor:pointer;
}
.uploadifive-queue-item {
	background-color: #F5F5F5;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font: 11px Arial, Helvetica, Sans-serif;
	margin-top: 5px;
	padding: 10px;
}
.uploadifive-queue-item .close {
	height: 16px;
	text-indent: -9999px;
	width: 16px;
}
/* .uploadifive-queue-item .close {
	background: url('uploadifive-cancel.png') 0 0 no-repeat;
	display: block;
	float: right;
	height: 16px;
	text-indent: -9999px;
	width: 16px;
} */
.uploadifive-queue-item .progress {
	height: 3px;
	width: 100%;
}
.uploadifive-queue-item .progress-bar {
	background-color: #0099FF;
	height: 3px;
	width: 0;
}